home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / zendisk1.zip / LST4-3.ASM < prev    next >
Assembly Source File  |  1990-02-15  |  203b  |  12 lines

  1. ;
  2. ; *** Listing 4-3 ***
  3. ;
  4. ; Measures the performance of reading 1000 words
  5. ; from memory with 1000 word-sized accesses.
  6. ;
  7.     sub    si,si
  8.     mov    cx,1000
  9.     call    ZTimerOn
  10.     rep    lodsw
  11.     call    ZTimerOff
  12.